home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / infoserv / www / cern / dev / www-talk.9301-9306.Z / www-talk.9301-9306 / text0526.txt < prev    next >
Encoding:
Text File  |  1995-04-24  |  1022 b   |  41 lines

  1. Happy New year everyone...
  2.  
  3. Ooops!
  4.  
  5. The problem is in HTML.c, there should be an UPDATE_STYLE in as first line of  
  6. list_element -- if not, a pargraph mark is written to a nonexistent text  
  7. object. Happens when the very first printable thing is a list element.
  8. Fixed routine is:
  9.  
  10. PRIVATE void list_element  ARGS3(void *, this, HTTag *,t, HTElement *,e)
  11. {
  12.     UPDATE_STYLE;
  13.     if (e->tag != &tags[DIR_TAG])
  14.     HText_appendParagraph(THIS->text);
  15.     else
  16.         HText_appendCharacter(THIS->text, '\t');    /* Tab @@ nl for UL? */
  17.     THIS->in_word = NO;
  18. }
  19.  
  20.  
  21. It'll be fixed in the next release. 1.1a of the library, I suggest you fix this  
  22. in your code now for speed.
  23.  
  24.     Tim
  25.  
  26. Begin original message:
  27.  
  28. Date:    Wed, 06 Jan 93 08:25 PST
  29. From: Denis DeLaRoca (310) 825-4580        <CSP1DWD@mvs.oac.ucla.edu>
  30.  
  31. Happy new year!
  32.  
  33. I just tried this TechInfo gateway... after selecting MIT from the
  34. opening menu my WWW client crashes badly (my MVS port), so does the
  35. sun3 version (fat core dump). Could you look into this?
  36.  
  37. -- Denis
  38.  
  39.  
  40.  
  41.